time.zoneTrans.when (field)
11 uses
time (current package)
zoneinfo.go#L54: when int64 // transition time, in seconds since 1970 GMT
zoneinfo.go#L166: if len(l.tx) == 0 || sec < l.tx[0].when {
zoneinfo.go#L172: end = l.tx[0].when
zoneinfo.go#L188: lim := tx[m].when
zoneinfo.go#L199: start = tx[lo].when
zoneinfo_read.go#L297: tx[i].when = n
zoneinfo_read.go#L313: tx = append(tx, zoneTrans{when: alpha, index: 0})
zoneinfo_read.go#L323: if tx[i].when <= sec && (i+1 == len(tx) || sec < tx[i+1].when) {
zoneinfo_read.go#L324: l.cacheStart = tx[i].when
zoneinfo_read.go#L328: l.cacheEnd = tx[i+1].when
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |